home *** CD-ROM | disk | FTP | other *** search
/ The Netter Presenter: Ur…ion in Overactive Bladder / The Netter Presenter: Urinary System - Structure & Function in Overactive Bladder.iso / mac / UrinarySystem.app / Contents / Main.dxr / Internal_127_notes indicator script.ls < prev    next >
Encoding:
Text File  |  2005-01-18  |  540 b   |  21 lines

  1. property OFFstate, ONstate
  2. global gTheONstate
  3.  
  4. on beginSprite me
  5.   memref = the member of sprite the currentSpriteNum
  6.   castLibNum = memref.castLibNum
  7.   OFFstate = member(member(memref).memberNum, castLibNum)
  8.   ONstate = member(member(memref).memberNum + 1, castLibNum)
  9.   set the member of sprite the spriteNum of me to me.OFFstate
  10. end
  11.  
  12. on SetOFFstate me
  13.   set the member of sprite the spriteNum of me to me.OFFstate
  14.   gTheONstate = 0
  15. end
  16.  
  17. on SetONstate me
  18.   set the member of sprite the spriteNum of me to me.ONstate
  19.   gTheONstate = 1
  20. end
  21.